home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Pyramid / Source / TransformController.h < prev    next >
Text File  |  1993-09-15  |  805b  |  40 lines

  1. /*    TransformController.h - Determine current transformation.
  2.  *    Copyright (C) 1993 Corona Design, Inc. All rights reserved.
  3.  *
  4.  *    Abstract
  5.  *        Encapsulates the interface for specifying viewing angle. This is
  6.  *        done via CircularSliders specifying Latitude and Longitude.
  7.  *
  8.  *    RCS path: 
  9.  *        $Source: /Users/pkron/Projects/voxel/Pyramid/RCS/TransformController.h,v $
  10.  *    Modified: $Date: 93/09/15 12:35:24 $ by $Author: pkron $
  11.  *    Current State: $State: Exp $ locked by $Locker:  $
  12.  */
  13.  
  14. #import <appkit/appkit.h>
  15.  
  16. #import    "perspect.h"
  17.  
  18.  
  19. @interface TransformController:Object
  20.     {
  21.     id    distance;
  22.     id    latitude;
  23.     id    longitude;
  24.     
  25.     MATRIX    transform;
  26.     }
  27.  
  28. - (MATRIX)transform;
  29.  
  30. @end
  31.  
  32. #ifdef    _LOG
  33. /*
  34.  *    $Log:    TransformController.h,v $
  35.  * Revision 1.1  93/09/15  12:35:24  pkron
  36.  * Created.
  37.  * 
  38.  */
  39. #endif        
  40.